home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 1845
- ClientLeft = 870
- ClientTop = 1845
- ClientWidth = 3180
- Height = 2535
- Left = 810
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 1845
- ScaleWidth = 3180
- Top = 1215
- Width = 3300
- Begin TextBox Text1
- Height = 1455
- Left = 120
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Text = "Text1"
- Top = 120
- Width = 2895
- End
- Begin Menu mnuEdit
- Caption = "&Edit"
- Begin Menu mnuCut
- Caption = "&Cu&t"
- Shortcut = ^X
- End
- Begin Menu mnuCopy
- Caption = "&Copy"
- Shortcut = ^C
- End
- Begin Menu mnuPaste
- Caption = "&Paste"
- Shortcut = ^V
- End
- Begin Menu mnuDelete
- Caption = "&Delete"
- Shortcut = {DEL}
- End
- End
- Begin Menu mnuWindow
- Caption = "&Window"
- Begin Menu mnuCascade
- Caption = "&Cascade"
- End
- Begin Menu mnuTile
- Caption = "&Tile"
- End
- Begin Menu mnuArrange
- Caption = "&Arrange Icons"
- End
- End
- Option Explicit
- Sub Form_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
- ' Just in case lblStatus hasn't been blanked
- MDIForm1.lblStatus = ""
- End Sub
- Sub Form_Unload (Cancel As Integer)
- NumChild = NumChild - 1
- If NumChild = 0 Then DisableEdit
- End Sub
- Sub mnuArrange_Click ()
- ' Arranges the icons for all minimised child forms
- MDIForm1.Arrange ARRANGE_ICONS
- End Sub
- Sub mnuCascade_Click ()
- ' Cascades all child forms that are not minimised
- MDIForm1.Arrange CASCADE
- End Sub
- Sub mnuCopy_Click ()
- EditCopy
- End Sub
- Sub mnuCut_Click ()
- EditCut
- End Sub
- Sub mnuDelete_Click ()
- ActiveControl.SelText = ""
- End Sub
- Sub mnuPaste_Click ()
- EditPaste
- End Sub
- Sub mnuTile_Click ()
- ' Tiles all child forms that are not minimised
- MDIForm1.Arrange TILE_HORIZONTAL
- End Sub
-